home *** CD-ROM | disk | FTP | other *** search
/ Champak 83 / (Vol 83) My Disc.iso / Games / blobz.swf / scripts / frame_5 / DoAction.as
Text File  |  2008-08-08  |  601b  |  24 lines

  1. stop();
  2. name_txt.restrict = "a-z 0-9.:\\-@";
  3. Selection.setFocus(name_txt);
  4. Selection.setSelection(name_txt.length,name_txt.length);
  5. ok_btn.onRelease = function()
  6. {
  7.    if(name_txt.length > 0)
  8.    {
  9.       _root.game_so.data.playerName = name_txt.text;
  10.    }
  11.    Body = "Check out Blobz - at www.kwikgames.com/blobz.htm\n\n" + Body;
  12.    loadVariablesNum("http://www.kwikgames.com/cgi/flashemail.php",0,"POST");
  13.    nextFrame();
  14. };
  15. ok_btn.onKeyDown = function()
  16. {
  17.    if(Key.getCode() == 13)
  18.    {
  19.       Key.removeListener(ok_btn);
  20.       this.onRelease();
  21.    }
  22. };
  23. Key.addListener(ok_btn);
  24.